home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0082 / 108.txt < prev    next >
Text File  |  1997-04-16  |  12KB  |  324 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Sun, 28 Jan 90       Volume 90 : Issue  108
  4.  
  5. Today's Topics:
  6.                             ARC 6.02 bugs
  7.                 Diablo 630 Emulator for Atari SLM 804
  8.                            Moniter burnout
  9.                         PC Emulators (2 msgs)
  10.                                Revolver
  11.                          Shareware MICRO RTX
  12.                         Tgrind ported to ST??
  13.                         too late for Lynx ...
  14.               Using Kermit with an MNP modem (problems)
  15. ----------------------------------------------------------------------
  16.  
  17. Date: 26 Jan 90 14:54:39 GMT
  18. From: mcsun!unido!tub!tubopal!ripley@uunet.uu.net  (Hans-Ch. Eckert)
  19. Subject: ARC 6.02 bugs
  20. Message-ID: <870@dalarna.tubopal.UUCP>
  21.  
  22. In article <1439@engage.enet.dec.com> wallace@oldtmr.dec.com (Ray Wallace)
  23.  writes:
  24. ]I'm also curious why ARC 6.02 causes these shells to bomb. They have survied
  25. ]other ARC version changes.
  26. As Rainer Klute (author of Arcgsh) posted in an article local to germany,
  27. Arcgsh doesn't work together with the new arc due to some failure in his
  28. xArg-code (which didn't pop up before 'cause zoo doesn't use xArgs though
  29. said to use it).
  30.  
  31. I beleive that's true for the other user interfaces, too.
  32.  
  33. --
  34. Greetings from RIPLEY | UUCP: ripley@tubopal.UUCP (ripley@opal.cs.tu-berlin.de)
  35. Hans-Christian Eckert |         ...!unido!tub!opal!ripley (Europe)
  36. D-1000 Berlin 30      |         ...!pyramid!tub!opal!ripley (World)
  37. Regensburger Str. 2   | BITNET: ripley%tubopal@DB0TUI11.BITNET (saves $$$)
  38.  
  39. ------------------------------
  40.  
  41. Date: 27 Jan 90 14:57:54 GMT
  42. From: mcsun!unido!unipas!stabl@uunet.uu.net  (Robert Stabl)
  43. Subject: Diablo 630 Emulator for Atari SLM 804
  44. Message-ID: <877@unipas.fmi.uni-passau.de>
  45.  
  46. The following C code refers to the printing of a bitmap on the
  47. Atari laserprinter SLM 804 (via the Diablo 630 emulator).
  48.  
  49. My questions:
  50.  ??? Is my interpretation of the fields correct ???
  51.  
  52.  ??? What do the fields
  53.         d_xmin and d_ymin
  54.      stand for ???
  55.  
  56. Robert.
  57.  
  58. ------------------------------------------------------------------------
  59.  
  60. typedef struct
  61.  ?
  62.   int *s_form; /* Pointer to bitmap to be printed, has to be even (int *) */
  63.   int s_xmin,  /* x coordinate of upper left corner in bitmap to be printed */
  64.       s_ymin,  /* y  -"- */
  65.       s_nxln,  /* width of the bitmap in *bytes* */
  66.       b_width, /* width of the bitmap in *pixels* */
  67.       b_height,/* height of the bitmap in "scan lines" (pixels) */
  68.       d_xmin,  /* x coordinate of the destination ??????? */
  69.       d_ymin,  /* y  -"- */
  70.       scalefac; /* resolution of the output */
  71.                 /* 1 = 300x300 dpi
  72.                    2 = 150x150 dpi
  73.                    3 =  75x 75 dpi */
  74.  ? LASER;
  75.  
  76. LASER o;
  77.  
  78. struct bitmap
  79.  ?
  80.   int width,   /* width of bitmap to be printed in pixels */
  81.       height;  /* height of the bitmap */
  82.   long *pixptr; /* our bitmap is organized in long words,
  83.                    this is the pointer to it */
  84.  ?;
  85.  
  86. void Hardcopy(struct bitmap *bmap)
  87. ?
  88.   fp=fopen("PRN:","w");
  89.  
  90.   o.s_form   =     (int *)bmap->pixptr;
  91.   o.s_xmin   =     0;
  92.   o.s_ymin   =     0;
  93.   o.s_nxln   =     bmap->width/8;
  94.   o.b_width  =     bmap->width;
  95.   o.b_height =     bmap->height;
  96.   o.d_xmin   =     0; /* what are the fields for ??? */
  97.   o.d_ymin   =     0;
  98.   o.scalefac =     1;
  99.  
  100.   fprintf(fp,"\033\022G%08lx \n\f",&o);
  101. /*
  102.  * the print command has the following structure:
  103.  * ASCII  : ESC DC2 G  $hhhhhhhh SP
  104.  * Decimal: 27  18  71 $hhhhhhhh 32
  105.  * Hex    : 1B  12  47 $hhhhhhhh 20
  106.  *
  107.  * hhhhhhhh is the hex representation of the pointer to the above
  108.  * defined structure
  109.  */
  110.  
  111.   fclose(fp);
  112. ?
  113. -----------------------------------------------------------------------
  114.  
  115. --
  116. \  Robert Stabl              =|= stabl@unipas.fmi.uni-passau.de               /
  117.  \ Dept. of Computer Science |=| stabl%unipas.fmi.uni-passau.de@unido.BITNET /
  118.  / University of Passau      =|= stabl%unipas.fmi.uni-passau.de@relay.CS.NET \
  119. /  West Germany              |=| Phone: +49 851/509-346                       \
  120.  
  121. ------------------------------
  122.  
  123. Date: 27 Jan 90 21:36:11 GMT
  124. From: prism!warningm@cs.orst.edu  (MICHAEL WARNING)
  125. Subject: Moniter burnout
  126. Message-ID: <15294@orstcs.CS.ORST.EDU>
  127.  
  128.    My monitor (SM1224) was acting flakey for a week or so when all of the
  129. sudden it decided to completely die on me.  I traced the problems to what
  130. seems to be one bad part in the power supply (the board number is TH901).
  131. could somebody tell me exactly what the thing is and where I can get a new
  132. one so I can replace it?
  133.  
  134.                                         Mike Warning
  135.                                                 warningm@prism.cs.orst.edu
  136.  
  137. ------------------------------
  138.  
  139. Date: 26 Jan 90 16:09:46 GMT
  140. From: fox!portal!cup.portal.com!Xorg@apple.com  (Peter Ted Szymonik)
  141. Subject: PC Emulators
  142. Message-ID: <26310@cup.portal.com>
  143.  
  144. The reason to get an emulator is because all the emulators run much
  145. faster than an XT!  Not onl that, but with that cheap XT clone, what
  146. do you get?  Color? No. A 720K disk drive? No. A hard drive? No.  Lots
  147. of fun plugging and unplugging to use your printer and modem too.  An
  148. emulator is far and away the best way to go.  From the reviews it looks
  149. like SuperCharger is the best - no hacking, plug and play with MS-DOS
  150. included no less!  Just has to pass FCC - look for March-May release.
  151.  
  152. Pete
  153. C
  154.  
  155. ------------------------------
  156.  
  157. Date: 28 Jan 90 18:24:42 GMT
  158. From:
  159.  zaphod.mps.ohio-state.edu!samsung!rex!uflorida!winnie!zach!la062594@tut.cis.ohi
  160.  o-state.edu  ( John Karp)
  161. Subject: PC Emulators
  162. Message-ID: <766@winnie.fit.edu>
  163.  
  164. As has been mentioned, PC-DITTO II is currently shipping.  Unfortunately, only
  165. a small percentage of those receiving their boards have had any luck in
  166.  actuallygetting them to work....  The most common problem encountered is that
  167.  the
  168. computer locks up after reading the boot sector of a DOS disk.  Avant Garde is
  169. aware of the problem, and after much testing have concluded that the problem is
  170. not with the board itself, but is the result of timing problems between the
  171. 68000 in the ST and the V30 on the board.  These timing problems are present
  172. only in certain STs and can most likely be overcome in software (which Avant
  173. Garde is currently working on).  Those whom have had the good fortune of owning
  174. an ST immune to these timing difficulties (among whom I am unfortunately not to
  175. be counted) are very impresssed with the board's performance in terms of seed
  176. and compatibility.  If any of you have received your PC-DITTO II boards yet, and
  177. have not been successful in getting it to work, the above-mentioned software
  178. update should be available within the next week, and with Avant Garde's
  179. permission, I would gladly post it on the net....
  180.  
  181.  
  182. Also, if anyone is the least bit
  183. interested, I have recently modified my 40 track 5 1'4" IB Drive to work in
  184. both 40 and 80 track modes for the cost of about two minutes of time, and a
  185. dab of solder.  The drive (a TEAC mechanism) is capable of formatting
  186. consistently at 82 tracks 10 sectors as well as standard IBM 40 track mode.  If
  187. anyone owning a TEAC mechanism is interested in this mod, email me...
  188.  
  189. John P. Karp
  190.  
  191. ----------------------------------------------------------------------------
  192. "Man you shout so loud
  193.  You're right of course
  194.  But when you're in a crowd
  195.  You're right off course !"  ---> Ian Gillan ?the greatest voice of all time! ?
  196. ----------------------------------------------------------------------------
  197.  
  198. ------------------------------
  199.  
  200. Date: 28 Jan 90 20:06:50 GMT
  201. From:
  202.  swrinde!cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!watserv1!bmaraldo@ucsd.edu
  203.  (Commander Brett Maraldo)
  204. Subject: Revolver
  205. Message-ID: <850@watserv1.waterloo.edu>
  206.  
  207. In article <90Jan27.170350est.58970@ugw.utcs.utoronto.ca> 01659@AECLCR.BITNET
  208.  (Greg Csullog) writes:
  209. >control. Once this is done, PC, Mac and Atari modes would be
  210. >accessible by simply rolling between RAM partitions. IMAGINE
  211. >having PC, Mac and ST modes simultaneously in RAM and being able
  212. >to switch between them. That would make Revolver a HOT HOT
  213. >product.
  214.         Wow!  Now that would be neat.  I use Revolver for music
  215. applications (Notator, X-Or, K5 editor).
  216. >
  217. >As I was told today, Revolver is only selling 15 copies a month.
  218. >That's a shame because it is one of the best codes ever written
  219. >for the ST. C'mon Dave and PC emulator folks; give us the
  220. >ultimate computer by allowing simultaneous PC, Mac and ST modes
  221. >in memory partitions.
  222.  
  223.         I really trust Revolver.  It's nice not to have to be paranoid
  224. when you run a piece of software ("... when will it crash...").  I find
  225. that a lot fo s/w on the st is flakey.  Revolver is a great product, I
  226. think, and it should be doing better.  It probably needs more
  227. media hype.
  228.  
  229. Brett L maraldo
  230. --
  231.                --------     Unit 36 Research     ---------
  232.                         "Alien Technology Today"
  233.                       bmaraldo@watserv1.UWaterloo.ca
  234.                    ?uunet!clyde!utai?!watserv1!bmaraldo
  235.  
  236. ------------------------------
  237.  
  238. Date: 26 Jan 90 14:22:26 GMT
  239. From: mcsun!unido!tub!tubopal!ripley@uunet.uu.net  (Hans-Ch. Eckert)
  240. Subject: Shareware MICRO RTX
  241. Message-ID: <869@dalarna.tubopal.UUCP>
  242.  
  243. In article <882@bdt.UUCP> david@bdt.UUCP (David Beckemeyer) writes:
  244. ]In article <12117@cs.yale.edu> fischer-michael@CS.YALE.EDU (Michael Fischer)
  245.  writes:
  246. ]>Has this been tested under TOS 1.4?  The announcement didn't say.
  247. ]Yes RTX runs under TOS 1.4.  This shareware version version won't
  248. ]run on a non-68000 CPU (as in the TT, if we ever see one).  I'll
  249. ]cross that bridge when I come to it (anyone want to donate a TT
  250. ]for the project? -- Atari? )
  251. As I own MT C-Shell and found no differences between the recently
  252. posted RTX and the one I already had, I wonder why you write
  253. "This shareware version"...
  254.  
  255. Anyway, what I want to know is how the shareware regristration
  256. affects users of the MT C-Shell (or vice versa). That is (e.g.)
  257. Do I have to register if I already owned it before (though I didn't
  258. register my copy of MT C-Shell) ?
  259.  
  260. --
  261. Greetings from RIPLEY | UUCP: ripley@tubopal.UUCP (ripley@opal.cs.tu-berlin.de)
  262. Hans-Christian Eckert |         ...!unido!tub!opal!ripley (Europe)
  263. D-1000 Berlin 30      |         ...!pyramid!tub!opal!ripley (World)
  264. Regensburger Str. 2   | BITNET: ripley%tubopal@DB0TUI11.BITNET (saves $$$)
  265.  
  266. ------------------------------
  267.  
  268. Date: 28 Jan 90 18:12:49 GMT
  269. From: zaphod.mps.ohio-state.edu!unix.cis.pitt.edu!dgjst@tut.cis.ohio-state.edu
  270.  (Daniel G. Jones)
  271. Subject: Tgrind ported to ST??
  272. Message-ID: <21925@unix.cis.pitt.edu>
  273.  
  274.      Does anyone know if tgrind has been ported to the ST?
  275.  
  276.                                     Thanks in advance,
  277.                                             Dan Jones
  278.  
  279. ------------------------------
  280.  
  281. Date: 28 Jan 90 20:01:59 GMT
  282. From: sunybcs!marvin.cs.Buffalo.EDU!bediako@rutgers.edu  (Bernard Bediako)
  283. Subject: too late for Lynx ...
  284. Message-ID: <16395@eerie.acsu.Buffalo.EDU>
  285.  
  286. HiHiHi
  287.  Can anyone tell where/who to call to become a Lynx develeper.
  288. How much is the package?  What's it include?
  289.  
  290. bernie
  291.  
  292. Bernard Bediako  --------=-=-=-=-=->    DOMAIN: bediako@cs.buffalo.edu
  293.  
  294. ------------------------------
  295.  
  296. Date: 28 Jan 90 16:06:33 GMT
  297. From: cs.utexas.edu!jarvis.csri.toronto.edu!utgpu!romwa@tut.cis.ohio-state.edu
  298.  (Royal Ontario Museum)
  299. Subject: Using Kermit with an MNP modem (problems)
  300. Message-ID: <1990Jan28.160633.15343@gpu.utcs.utoronto.ca>
  301.  
  302. Ever since I got my ATI 2500etc/e modem configured to MNP, I seem to
  303. be unable to use kermit for my downloads.  I use UNITERM with the
  304. RS-232 configured for 9600bps;RTS/CTS/8-1-None.  Kermit just times
  305. out.  However, if I then go in with a standard 2400 bps;!MNP config
  306. (same modem) everything works like a charm.  Anyone have any insights
  307. as to what is going on?
  308.  
  309. advTHANKSance
  310.  
  311. Pavneet Arora
  312. ...!utgpu!rom!pavneet
  313.  
  314. Royal Ontario Museum
  315. 100 Queen's Park
  316. Toronto, Ontario
  317. M5S 2C6
  318. (416) 586-5626
  319.  
  320. ------------------------------
  321.  
  322. End of INFO-ATARI16 Digest V90 Issue #108
  323. *****************************************
  324.